home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Leonardo the Inventor
/
Leonardo The Inventor (93026)(Broderbund)(Riverdeep)(2004).iso
/
LEOWINMV
/
SHARED.DIR
/
03149_Script_monitorDepth
< prev
next >
Wrap
Text File
|
1996-04-01
|
356b
|
17 lines
on storeMonitorDepth
global monitorDepthAtStart
set monitorDepthAtStart = the colorDepth
end
on force256Colors
if NOT(the machinetype = 256) then
set the colorDepth = 8
end if
end
on restoreMonitorDepth
global monitorDepthAtStart
if NOT(the machinetype = 256) then
set the colorDepth = monitorDepthAtStart
end if
end